home *** CD-ROM | disk | FTP | other *** search
/ Windows 95 - 300 Programs & More / Windows 95 - 300 Programs & More.iso / misc / sysclick / sysclk.h < prev    next >
C/C++ Source or Header  |  1996-03-25  |  399b  |  20 lines

  1. #ifndef    __SysClk_H__
  2. #define __SysClk_H__
  3.  
  4. #include <afxwin.h>
  5.  
  6. //    ************************************************************
  7. //    CSurfDataApp Class Declaration
  8. //    ************************************************************
  9. class    CSysClkApp : public CWinApp
  10. {
  11. public:
  12.     virtual    BOOL    InitInstance();
  13.     virtual    int        ExitInstance();
  14. private:
  15.     HANDLE            m_Mutex;
  16. protected:
  17. };
  18.  
  19. #endif
  20.